home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 30 / PC Gamer IT CD 30 1-2.iso / MOTS / GAMEDATA / RESOURCE / JKMRES.GOO / cog_item_datadisk.cog < prev    next >
Text File  |  1998-02-25  |  562b  |  38 lines

  1. # Jedi Knight Cog Script
  2. #
  3. # ITEM_DATADISK.COG
  4. #
  5. # INVENTORY script - Blue Key
  6. # Bin 45
  7. #
  8. # [YB]
  9. #
  10. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  11.  
  12.  
  13. symbols
  14.  
  15. sound       keysound=BactaUse01.WAV
  16. thing       player
  17.  
  18. message     activated
  19. end
  20.  
  21. # ========================================================================================
  22.  
  23. code
  24.  
  25. activated:
  26.    player = GetSourceRef();
  27.    // Print("This is a Datadisk...");
  28.    jkPrintUNIString(player, 269);
  29.    PlaySoundLocal(keysound, 1.0, 0.0, 0 );
  30.  
  31.    Return;
  32.  
  33. end
  34.  
  35.  
  36.  
  37.  
  38.